home *** CD-ROM | disk | FTP | other *** search
/ Freelog 121 / FreelogMagazineJuilletAout2014-No121.iso / Outils / Adobe-Air / adobe-air_13.exe / [0] / setup.swf / scripts / mx / states / IOverride.as < prev    next >
Text File  |  2014-03-27  |  276b  |  16 lines

  1. package mx.states
  2. {
  3.    import mx.core.UIComponent;
  4.    
  5.    public interface IOverride
  6.    {
  7.        
  8.       
  9.       function initialize() : void;
  10.       
  11.       function remove(param1:UIComponent) : void;
  12.       
  13.       function apply(param1:UIComponent) : void;
  14.    }
  15. }
  16.